home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / N-P / OmniScript 2.0.1 / Examples / Droplet Examples / File Info.Setup < prev    next >
Encoding:
Text File  |  1993-09-20  |  390 b   |  14 lines  |  [TEXT/ttxt]

  1. *
  2. * This droplet displays some information about the file
  3. *
  4. droplet 'Display Document Info'
  5. *
  6. script 'Display Document Info'
  7. display #path':'$File
  8. file 0,$File  !! Reset the current file after the #path function
  9. *
  10. display 'Type = '#file(typ)'  Creator = '#file(cre)
  11. display '    created:'#conv(#file(date))
  12. display '   modified:'#conv(#file(mod))
  13. display '  backed up:'#conv(#file(backup))
  14.